Xbasic

SQL_InstallOracleLiteFunctions Function

Syntax

Result_Flag as L = SQL_InstallOracleLiteFunctions(P c )

Arguments

Result_Flag

.T. = The installation was successful. .F. = The installation was unsuccessful.

c

A SQL::Connection object that established the connection to the back-end database.

Description

Install support for numeric portable functions in OracleLite

Discussion

The installer of Alpha Anywhere Enterprise software who is going to be using Oracle Lite, must first run the SQL_InstallOracleLiteFunctions() function once per database. The user must have administrative rights for the database.

Example

Assuming that cs defines a connection string to an Oracle Lite database.

dim conn as SQL::Connection
dim cs as C
if (conn.open(cs)) then

sql_installoraclelitefunctions(conn)
end if
conn.close()

Limitations

Desktop applications only.

See Also